cargo run: fix typos in help text
authorc4rlo <carlo.teubner@gmail.com>
Sun, 5 Jul 2015 10:23:36 +0000 (11:23 +0100)
committerc4rlo <carlo.teubner@gmail.com>
Sun, 5 Jul 2015 10:23:36 +0000 (11:23 +0100)
src/bin/run.rs

index dbc0b90ca5486fe10dccfee90da21b9433ef95a8..71718ef1d07d25026b566ff143b39a29238dd538 100644 (file)
@@ -36,12 +36,12 @@ Options:
     -v, --verbose           Use verbose output
     -q, --quiet             No output printed to stdout
 
-If neither `--bin` or `--example` are given, then if the project only has one
+If neither `--bin` nor `--example` are given, then if the project only has one
 bin target it will be run. Otherwise `--bin` specifies the bin target to run,
 and `--example` specifies the example target to run. At most one of `--bin` or
 `--example` can be provided.
 
-All of the trailing arguments are passed as to the binary to run.
+All of the trailing arguments are passed to the binary to run.
 ";
 
 pub fn execute(options: Options, config: &Config) -> CliResult<Option<()>> {